home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / net / readline-2.0mg.tar.gz / readline-2.0mg.tar / readline-2.0mg / doc / history.info (.txt) < prev    next >
GNU Info File  |  1994-08-03  |  28KB  |  557 lines

  1. This is Info file history.info, produced by Makeinfo-1.55 from the
  2. input file hist.texinfo.
  3.    This document describes the GNU History library, a programming tool
  4. that provides a consistent user interface for recalling lines of
  5. previously typed input.
  6.    Copyright (C) 1988, 1991 Free Software Foundation, Inc.
  7.    Permission is granted to make and distribute verbatim copies of this
  8. manual provided the copyright notice and this permission notice pare
  9. preserved on all copies.
  10.    Permission is granted to copy and distribute modified versions of
  11. this manual under the conditions for verbatim copying, provided that
  12. the entire resulting derived work is distributed under the terms of a
  13. permission notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that this permission notice may be stated in a
  17. translation approved by the Foundation.
  18. File: history.info,  Node: Top,  Next: Using History Interactively,  Prev: (DIR),  Up: (DIR)
  19. GNU History Library
  20. *******************
  21.    This document describes the GNU History library, a programming tool
  22. that provides a consistent user interface for recalling lines of
  23. previously typed input.
  24. * Menu:
  25. * Using History Interactively::      GNU History User's Manual.
  26. * Programming with GNU History::  GNU History Programmer's Manual.
  27. * Concept Index::          Index of concepts described in this manual.
  28. * Function and Variable Index::      Index of externally visible functions
  29.                   and variables.
  30. File: history.info,  Node: Using History Interactively,  Next: Programming with GNU History,  Prev: Top,  Up: Top
  31. Using History Interactively
  32. ***************************
  33.    This chapter describes how to use the GNU History Library
  34. interactively, from a user's standpoint.  It should be considered a
  35. user's guide.  For information on using the GNU History Library in your
  36. own programs, *note Programming with GNU History::..
  37. * Menu:
  38. * History Interaction::        What it feels like using History as a user.
  39. File: history.info,  Node: History Interaction,  Up: Using History Interactively
  40. History Interaction
  41. ===================
  42.    The History library provides a history expansion feature that is
  43. similar to the history expansion provided by `csh'.  The following text
  44. describes the syntax used to manipulate the history information.
  45.    History expansion takes place in two parts.  The first is to
  46. determine which line from the previous history should be used during
  47. substitution.  The second is to select portions of that line for
  48. inclusion into the current one.  The line selected from the previous
  49. history is called the "event", and the portions of that line that are
  50. acted upon are called "words".  The line is broken into words in the
  51. same fashion that Bash does, so that several English (or Unix) words
  52. surrounded by quotes are considered as one word.
  53. * Menu:
  54. * Event Designators::    How to specify which history line to use.
  55. * Word Designators::    Specifying which words are of interest.
  56. * Modifiers::        Modifying the results of substitution.
  57. File: history.info,  Node: Event Designators,  Next: Word Designators,  Up: History Interaction
  58. Event Designators
  59. -----------------
  60.    An event designator is a reference to a command line entry in the
  61. history list.
  62.      Start a history substitution, except when followed by a space, tab,
  63.      the end of the line, = or (.
  64.      Refer to the previous command.  This is a synonym for `!-1'.
  65.      Refer to command line N.
  66. `!-n'
  67.      Refer to the command N lines back.
  68. `!string'
  69.      Refer to the most recent command starting with STRING.
  70. `!?string'[`?']
  71.      Refer to the most recent command containing STRING.
  72.      The entire command line typed so far.
  73. `^string1^string2^'
  74.      Quick Substitution.  Repeat the last command, replacing STRING1
  75.      with STRING2.  Equivalent to `!!:s/string1/string2/'.
  76. File: history.info,  Node: Word Designators,  Next: Modifiers,  Prev: Event Designators,  Up: History Interaction
  77. Word Designators
  78. ----------------
  79.    A : separates the event specification from the word designator.  It
  80. can be omitted if the word designator begins with a ^, $, * or %.
  81. Words are numbered from the beginning of the line, with the first word
  82. being denoted by a 0 (zero).
  83. `0 (zero)'
  84.      The `0'th word.  For many applications, this is the command word.
  85.      The Nth word.
  86.      The first argument;  that is, word 1.
  87.      The last argument.
  88.      The word matched by the most recent `?string?' search.
  89. `x-y'
  90.      A range of words; `-Y' abbreviates `0-Y'.
  91.      All of the words, except the `0'th.  This is a synonym for `1-$'.
  92.      It is not an error to use * if there is just one word in the event;
  93.      the empty string is returned in that case.
  94.      Abbreviates `x-$'
  95.      Abbreviates `x-$' like `x*', but omits the last word.
  96. File: history.info,  Node: Modifiers,  Prev: Word Designators,  Up: History Interaction
  97. Modifiers
  98. ---------
  99.    After the optional word designator, you can add a sequence of one or
  100. more of the following modifiers, each preceded by a :.
  101.      Remove a trailing pathname component, leaving only the head.
  102.      Remove a trailing suffix of the form `.'SUFFIX, leaving the
  103.      basename.
  104.      Remove all but the trailing suffix.
  105.      Remove all leading  pathname  components, leaving the tail.
  106.      Print the new command but do not execute it.
  107. `s/old/new/'
  108.      Substitute NEW for the first occurrence of OLD in the event line.
  109.      Any delimiter may be used in place of /.  The delimiter may be
  110.      quoted in OLD and NEW with a single backslash.  If & appears in
  111.      NEW, it is replaced by OLD.  A single backslash will quote the &.
  112.      The final delimiter is optional if it is the last character on the
  113.      input line.
  114.      Repeat the previous substitution.
  115.      Cause changes to be applied over the entire event line.  Used in
  116.      conjunction with `s', as in `gs/old/new/', or with `&'.
  117. File: history.info,  Node: Programming with GNU History,  Next: Concept Index,  Prev: Using History Interactively,  Up: Top
  118. Programming with GNU History
  119. ****************************
  120.    This chapter describes how to interface programs that you write with
  121. the GNU History Library.  It should be considered a technical guide.
  122. For information on the interactive use of GNU History, *note Using
  123. History Interactively::..
  124. * Menu:
  125. * Introduction to History::    What is the GNU History library for?
  126. * History Storage::        How information is stored.
  127. * History Functions::        Functions that you can use.
  128. * History Variables::        Variables that control behaviour.
  129. * History Programming Example::    Example of using the GNU History Library.
  130. File: history.info,  Node: Introduction to History,  Next: History Storage,  Up: Programming with GNU History
  131. Introduction to History
  132. =======================
  133.    Many programs read input from the user a line at a time.  The GNU
  134. History library is able to keep track of those lines, associate
  135. arbitrary data with each line, and utilize information from previous
  136. lines in composing new ones.
  137.    The programmer using the History library has available functions for
  138. remembering lines on a history list, associating arbitrary data with a
  139. line, removing lines from the list, searching through the list for a
  140. line containing an arbitrary text string, and referencing any line in
  141. the list directly.  In addition, a history "expansion" function is
  142. available which provides for a consistent user interface across
  143. different programs.
  144.    The user using programs written with the History library has the
  145. benefit of a consistent user interface with a set of well-known
  146. commands for manipulating the text of previous lines and using that text
  147. in new commands.  The basic history manipulation commands are similar to
  148. the history substitution provided by `csh'.
  149.    If the programmer desires, he can use the Readline library, which
  150. includes some history manipulation by default, and has the added
  151. advantage of command line editing.
  152. File: history.info,  Node: History Storage,  Next: History Functions,  Prev: Introduction to History,  Up: Programming with GNU History
  153. History Storage
  154. ===============
  155.    The history list is an array of history entries.  A history entry is
  156. declared as follows:
  157.      typedef struct _hist_entry {
  158.        char *line;
  159.        char *data;
  160.      } HIST_ENTRY;
  161.    The history list itself might therefore be declared as
  162.      HIST_ENTRY **the_history_list;
  163.    The state of the History library is encapsulated into a single
  164. structure:
  165.      /* A structure used to pass the current state of the history stuff around. */
  166.      typedef struct _hist_state {
  167.        HIST_ENTRY **entries;         /* Pointer to the entries themselves. */
  168.        int offset;                   /* The location pointer within this array. */
  169.        int length;                   /* Number of elements within this array. */
  170.        int size;                     /* Number of slots allocated to this array. */
  171.        int flags;
  172.      } HISTORY_STATE;
  173.    If the flags member includes `HS_STIFLED', the history has been
  174. stifled.
  175. File: history.info,  Node: History Functions,  Next: History Variables,  Prev: History Storage,  Up: Programming with GNU History
  176. History Functions
  177. =================
  178.    This section describes the calling sequence for the various functions
  179. present in GNU History.
  180. * Menu:
  181. * Initializing History and State Management::    Functions to call when you
  182.                         want to use history in a
  183.                         program.
  184. * History List Management::        Functions used to manage the list
  185.                     of history entries.
  186. * Information About the History List::    Functions returning information about
  187.                     the history list.
  188. * Moving Around the History List::    Functions used to change the position
  189.                     in the history list.
  190. * Searching the History List::        Functions to search the history list
  191.                     for entries containing a string.
  192. * Managing the History File::        Functions that read and write a file
  193.                     containing the history list.
  194. * History Expansion::            Functions to perform csh-like history
  195.                     expansion.
  196. File: history.info,  Node: Initializing History and State Management,  Next: History List Management,  Up: History Functions
  197. Initializing History and State Management
  198. -----------------------------------------
  199.    This section describes functions used to initialize and manage the
  200. state of the History library when you want to use the history functions
  201. in your program.
  202.  - Function: void using_history ()
  203.      Begin a session in which the history functions might be used.  This
  204.      initializes the interactive variables.
  205.  - Function: HISTORY_STATE * history_get_history_state ()
  206.      Return a structure describing the current state of the input
  207.      history.
  208.  - Function: void history_set_history_state (HISTORY_STATE *state)
  209.      Set the state of the history list according to STATE.
  210. File: history.info,  Node: History List Management,  Next: Information About the History List,  Prev: Initializing History and State Management,  Up: History Functions
  211. History List Management
  212. -----------------------
  213.    These functions manage individual entries on the history list, or set
  214. parameters managing the list itself.
  215.  - Function: void add_history (char *string)
  216.      Place STRING at the end of the history list.  The associated data
  217.      field (if any) is set to `NULL'.
  218.  - Function: HIST_ENTRY * remove_history (int which)
  219.      Remove history entry at offset WHICH from the history.  The
  220.      removed element is returned so you can free the line, data, and
  221.      containing structure.
  222.  - Function: HIST_ENTRY * replace_history_entry (int which, char *line,
  223.           char *data)
  224.      Make the history entry at offset WHICH have LINE and DATA.  This
  225.      returns the old entry so you can dispose of the data.  In the case
  226.      of an invalid WHICH, a `NULL' pointer is returned.
  227.  - Function: void stifle_history (int max)
  228.      Stifle the history list, remembering only the last MAX entries.
  229.  - Function: int unstifle_history ()
  230.      Stop stifling the history.  This returns the previous amount the
  231.      history was stifled.  The value is positive if the history was
  232.      stifled, negative if it wasn't.
  233.  - Function: int history_is_stifled ()
  234.      Returns non-zero if the history is stifled, zero if it is not.
  235. File: history.info,  Node: Information About the History List,  Next: Moving Around the History List,  Prev: History List Management,  Up: History Functions
  236. Information About the History List
  237. ----------------------------------
  238.    These functions return information about the entire history list or
  239. individual list entries.
  240.  - Function: HIST_ENTRY ** history_list ()
  241.      Return a `NULL' terminated array of `HIST_ENTRY' which is the
  242.      current input history.  Element 0 of this list is the beginning of
  243.      time.  If there is no history, return `NULL'.
  244.  - Function: int where_history ()
  245.      Returns the offset of the current history element.
  246.  - Function: HIST_ENTRY * current_history ()
  247.      Return the history entry at the current position, as determined by
  248.      `where_history ()'.  If there is no entry there, return a `NULL'
  249.      pointer.
  250.  - Function: HIST_ENTRY * history_get (int offset)
  251.      Return the history entry at position OFFSET, starting from
  252.      `history_base'.  If there is no entry there, or if OFFSET is
  253.      greater than the history length, return a `NULL' pointer.
  254.  - Function: int history_total_bytes ()
  255.      Return the number of bytes that the primary history entries are
  256.      using.  This function returns the sum of the lengths of all the
  257.      lines in the history.
  258. File: history.info,  Node: Moving Around the History List,  Next: Searching the History List,  Prev: Information About the History List,  Up: History Functions
  259. Moving Around the History List
  260. ------------------------------
  261.    These functions allow the current index into the history list to be
  262. set or changed.
  263.  - Function: int history_set_pos (int pos)
  264.      Set the position in the history list to POS, an absolute index
  265.      into the list.
  266.  - Function: HIST_ENTRY * previous_history ()
  267.      Back up the current history offset to the previous history entry,
  268.      and return a pointer to that entry.  If there is no previous
  269.      entry, return a `NULL' pointer.
  270.  - Function: HIST_ENTRY * next_history ()
  271.      Move the current history offset forward to the next history entry,
  272.      and return the a pointer to that entry.  If there is no next
  273.      entry, return a `NULL' pointer.
  274. File: history.info,  Node: Searching the History List,  Next: Managing the History File,  Prev: Moving Around the History List,  Up: History Functions
  275. Searching the History List
  276. --------------------------
  277.    These functions allow searching of the history list for entries
  278. containing a specific string.  Searching may be performed both forward
  279. and backward from the current history position.  The search may be
  280. "anchored", meaning that the string must match at the beginning of the
  281. history entry.
  282.  - Function: int history_search (char *string, int direction)
  283.      Search the history for STRING, starting at the current history
  284.      offset.  If DIRECTION < 0, then the search is through previous
  285.      entries, else through subsequent.  If STRING is found, then the
  286.      current history index is set to that history entry, and the value
  287.      returned is the offset in the line of the entry where STRING was
  288.      found.  Otherwise, nothing is changed, and a -1 is returned.
  289.  - Function: int history_search_prefix (char *string, int direction)
  290.      Search the history for STRING, starting at the current history
  291.      offset.  The search is anchored: matching lines must begin with
  292.      STRING.  If DIRECTION < 0, then the search is through previous
  293.      entries, else through subsequent.  If STRING is found, then the
  294.      current history index is set to that entry, and the return value
  295.      is 0.  Otherwise, nothing is changed, and a -1 is returned.
  296.  - Function: int history_search_pos (char *string, int direction, int
  297.           pos)
  298.      Search for STRING in the history list, starting at POS, an
  299.      absolute index into the list.  If DIRECTION is negative, the search
  300.      proceeds backward from POS, otherwise forward.  Returns the
  301.      absolute index of the history element where STRING was found, or
  302.      -1 otherwise.
  303. File: history.info,  Node: Managing the History File,  Next: History Expansion,  Prev: Searching the History List,  Up: History Functions
  304. Managing the History File
  305. -------------------------
  306.    The History library can read the history from and write it to a file.
  307. This section documents the functions for managing a history file.
  308.  - Function: int read_history (char *filename)
  309.      Add the contents of FILENAME to the history list, a line at a
  310.      time.  If FILENAME is `NULL', then read from `~/.history'.
  311.      Returns 0 if successful, or errno if not.
  312.  - Function: int read_history_range (char *filename, int from, int to)
  313.      Read a range of lines from FILENAME, adding them to the history
  314.      list.  Start reading at line FROM and end at TO.  If FROM is zero,
  315.      start at the beginning.  If TO is less than FROM, then read until
  316.      the end of the file.  If FILENAME is `NULL', then read from
  317.      `~/.history'.  Returns 0 if successful, or `errno' if not.
  318.  - Function: int write_history (char *filename)
  319.      Write the current history to FILENAME, overwriting FILENAME if
  320.      necessary.  If FILENAME is `NULL', then write the history list to
  321.      `~/.history'.  Values returned are as in `read_history ()'.
  322.  - Function: int append_history (int nelements, char *filename)
  323.      Append the last NELEMENTS of the history list to FILENAME.
  324.  - Function: int history_truncate_file (char *filename, int nlines)
  325.      Truncate the history file FILENAME, leaving only the last NLINES
  326.      lines.
  327. File: history.info,  Node: History Expansion,  Prev: Managing the History File,  Up: History Functions
  328. History Expansion
  329. -----------------
  330.    These functions implement `csh'-like history expansion.
  331.  - Function: int history_expand (char *string, char **output)
  332.      Expand STRING, placing the result into OUTPUT, a pointer to a
  333.      string (*note History Interaction::.).  Returns:
  334.     `0'
  335.           If no expansions took place (or, if the only change in the
  336.           text was the de-slashifying of the history expansion
  337.           character);
  338.     `1'
  339.           if expansions did take place;
  340.     `-1'
  341.           if there was an error in expansion;
  342.     `2'
  343.           if the returned line should only be displayed, but not
  344.           executed, as with the `:p' modifier (*note Modifiers::.).
  345.      If an error ocurred in expansion, then OUTPUT contains a
  346.      descriptive error message.
  347.  - Function: char * history_arg_extract (int first, int last, char
  348.           *string)
  349.      Extract a string segment consisting of the FIRST through LAST
  350.      arguments present in STRING.  Arguments are broken up as in Bash.
  351.  - Function: char * get_history_event (char *string, int *cindex, int
  352.           qchar)
  353.      Returns the text of the history event beginning at STRING +
  354.      *CINDEX.  *CINDEX is modified to point to after the event
  355.      specifier.  At function entry, CINDEX points to the index into
  356.      STRING where the history event specification begins.  QCHAR is a
  357.      character that is allowed to end the event specification in
  358.      addition to the "normal" terminating characters.
  359.  - Function: char ** history_tokenize (char *string)
  360.      Return an array of tokens parsed out of STRING, much as the shell
  361.      might.  The tokens are split on white space and on the characters
  362.      `()<>;&|$', and shell quoting conventions are obeyed.
  363. File: history.info,  Node: History Variables,  Next: History Programming Example,  Prev: History Functions,  Up: Programming with GNU History
  364. History Variables
  365. =================
  366.    This section describes the externally visible variables exported by
  367. the GNU History Library.
  368.  - Variable: int history_base
  369.      The logical offset of the first entry in the history list.
  370.  - Variable: int history_length
  371.      The number of entries currently stored in the history list.
  372.  - Variable: int max_input_history
  373.      The maximum number of history entries.  This must be changed using
  374.      `stifle_history ()'.
  375.  - Variable: char history_expansion_char
  376.      The character that starts a history event.  The default is `!'.
  377.  - Variable: char history_subst_char
  378.      The character that invokes word substitution if found at the start
  379.      of a line.  The default is `^'.
  380.  - Variable: char history_comment_char
  381.      During tokenization, if this character is seen as the first
  382.      character of a word, then it and all subsequent characters up to a
  383.      newline are ignored, suppressing history expansion for the
  384.      remainder of the line.  This is disabled by default.
  385.  - Variable: char * history_no_expand_chars
  386.      The list of characters which inhibit history expansion if found
  387.      immediately following HISTORY_EXPANSION_CHAR.  The default is
  388.      whitespace and `='.
  389. File: history.info,  Node: History Programming Example,  Prev: History Variables,  Up: Programming with GNU History
  390. History Programming Example
  391. ===========================
  392.    The following program demonstrates simple use of the GNU History
  393. Library.
  394.      main ()
  395.      {
  396.        char line[1024], *t;
  397.        int len, done = 0;
  398.      
  399.        line[0] = 0;
  400.      
  401.        using_history ();
  402.        while (!done)
  403.          {
  404.            printf ("history$ ");
  405.            fflush (stdout);
  406.            t = fgets (line, sizeof (line) - 1, stdin);
  407.            if (t && *t)
  408.              {
  409.                len = strlen (t);
  410.                if (t[len - 1] == '\n')
  411.                  t[len - 1] = '\0';
  412.              }
  413.      
  414.            if (!t)
  415.              strcpy (line, "quit");
  416.      
  417.            if (line[0])
  418.              {
  419.                char *expansion;
  420.                int result;
  421.      
  422.                result = history_expand (line, &expansion);
  423.                if (result)
  424.                  fprintf (stderr, "%s\n", expansion);
  425.      
  426.                if (result < 0 || result == 2)
  427.                  {
  428.                    free (expansion);
  429.                    continue;
  430.                  }
  431.      
  432.                add_history (expansion);
  433.                strncpy (line, expansion, sizeof (line) - 1);
  434.                free (expansion);
  435.              }
  436.      
  437.            if (strcmp (line, "quit") == 0)
  438.              done = 1;
  439.            else if (strcmp (line, "save") == 0)
  440.              write_history ("history_file");
  441.            else if (strcmp (line, "read") == 0)
  442.              read_history ("history_file");
  443.            else if (strcmp (line, "list") == 0)
  444.              {
  445.                register HIST_ENTRY **the_list;
  446.                register int i;
  447.      
  448.                the_list = history_list ();
  449.                if (the_list)
  450.                  for (i = 0; the_list[i]; i++)
  451.                    printf ("%d: %s\n", i + history_base, the_list[i]->line);
  452.              }
  453.            else if (strncmp (line, "delete", 6) == 0)
  454.              {
  455.                int which;
  456.                if ((sscanf (line + 6, "%d", &which)) == 1)
  457.                  {
  458.                    HIST_ENTRY *entry = remove_history (which);
  459.                    if (!entry)
  460.                      fprintf (stderr, "No such entry %d\n", which);
  461.                    else
  462.                      {
  463.                        free (entry->line);
  464.                        free (entry);
  465.                      }
  466.                  }
  467.                else
  468.                  {
  469.                    fprintf (stderr, "non-numeric arg given to `delete'\n");
  470.                  }
  471.              }
  472.          }
  473.      }
  474. File: history.info,  Node: Concept Index,  Next: Function and Variable Index,  Prev: Programming with GNU History,  Up: Top
  475. Concept Index
  476. *************
  477. * Menu:
  478. * anchored search:                      Searching the History List.
  479. * event designators:                    Event Designators.
  480. * expansion:                            History Interaction.
  481. * history events:                       Event Designators.
  482. * History Searching:                    Searching the History List.
  483. File: history.info,  Node: Function and Variable Index,  Prev: Concept Index,  Up: Top
  484. Function and Variable Index
  485. ***************************
  486. * Menu:
  487. * add_history:                          History List Management.
  488. * append_history:                       Managing the History File.
  489. * current_history:                      Information About the History List.
  490. * get_history_event:                    History Expansion.
  491. * history_arg_extract:                  History Expansion.
  492. * history_base:                         History Variables.
  493. * history_comment_char:                 History Variables.
  494. * history_expand:                       History Expansion.
  495. * history_expansion_char:               History Variables.
  496. * history_get:                          Information About the History List.
  497. * history_get_history_state:            Initializing History and State Management.
  498. * history_is_stifled:                   History List Management.
  499. * history_length:                       History Variables.
  500. * history_list:                         Information About the History List.
  501. * history_no_expand_chars:              History Variables.
  502. * history_search:                       Searching the History List.
  503. * history_search_pos:                   Searching the History List.
  504. * history_search_prefix:                Searching the History List.
  505. * history_set_history_state:            Initializing History and State Management.
  506. * history_set_pos:                      Moving Around the History List.
  507. * history_subst_char:                   History Variables.
  508. * history_tokenize:                     History Expansion.
  509. * history_total_bytes:                  Information About the History List.
  510. * history_truncate_file:                Managing the History File.
  511. * max_input_history:                    History Variables.
  512. * next_history:                         Moving Around the History List.
  513. * previous_history:                     Moving Around the History List.
  514. * read_history:                         Managing the History File.
  515. * read_history_range:                   Managing the History File.
  516. * remove_history:                       History List Management.
  517. * replace_history_entry:                History List Management.
  518. * stifle_history:                       History List Management.
  519. * unstifle_history:                     History List Management.
  520. * using_history:                        Initializing History and State Management.
  521. * where_history:                        Information About the History List.
  522. * write_history:                        Managing the History File.
  523. Tag Table:
  524. Node: Top
  525. Node: Using History Interactively
  526. Node: History Interaction
  527. Node: Event Designators
  528. Node: Word Designators
  529. Node: Modifiers
  530. Node: Programming with GNU History
  531. Node: Introduction to History
  532. Node: History Storage
  533. Node: History Functions
  534. Node: Initializing History and State Management
  535. 10176
  536. Node: History List Management
  537. 10968
  538. Node: Information About the History List
  539. 12396
  540. Node: Moving Around the History List
  541. 13702
  542. Node: Searching the History List
  543. 14587
  544. Node: Managing the History File
  545. 16419
  546. Node: History Expansion
  547. 17925
  548. Node: History Variables
  549. 19769
  550. Node: History Programming Example
  551. 21138
  552. Node: Concept Index
  553. 23742
  554. Node: Function and Variable Index
  555. 24223
  556. End Tag Table
  557.